Stored Procedures [dbo].[dt_dropuserobjectbyid]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@idint4
Permissions
TypeActionOwning Principal
GrantExecutepublic
SQL Script
/*
**    Drop an object from the dbo.dtproperties table
*/

create procedure dbo.dt_dropuserobjectbyid
    @id int
as
    set nocount on
    delete from dbo.dtproperties where objectid=@id
GO
GRANT EXECUTE ON  [dbo].[dt_dropuserobjectbyid] TO [public]
GO
Uses